home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 173 / Issue 173 - Jul 2002 - DPCS0702.iso / editorial / Python / Python-2.2.1.exe / TEST_TEMPFILE.PY < prev    next >
Encoding:
Text File  |  2001-10-29  |  237 b   |  11 lines

  1. # SF bug #476138: tempfile behavior across platforms
  2. # Ensure that a temp file can be closed any number of times without error.
  3.  
  4. import tempfile
  5.  
  6. f = tempfile.TemporaryFile("w+b")
  7. f.write('abc\n')
  8. f.close()
  9. f.close()
  10. f.close()
  11.